Skip to content

Commit

Permalink
Fix interfaces related to solved issues.
Browse files Browse the repository at this point in the history
  • Loading branch information
phlegx committed Aug 12, 2021
1 parent ca87b1f commit 0888595
Showing 1 changed file with 4 additions and 0 deletions.
4 changes: 4 additions & 0 deletions src/helpers/interfaces.ts
Original file line number Diff line number Diff line change
Expand Up @@ -4,6 +4,8 @@ export type IElements = string | string[] | Element | Element[];

export type ITranslator = (key: string, params?: string | string[]) => string;
export interface IUppload {
id: string;
wrapper?: string;
services: UpploadService[];
effects: UpploadEffect[];
isOpen: boolean;
Expand All @@ -15,6 +17,8 @@ export interface IUppload {
}

export interface IUpploadSettings {
id?: string;
wrapper?: string;
value?: string;
bind?: IElements;
call?: IElements;
Expand Down

0 comments on commit 0888595

Please sign in to comment.