Skip to content

Commit

Permalink
Refactor #2088
Browse files Browse the repository at this point in the history
  • Loading branch information
mertsincan committed Jun 6, 2021
1 parent d66eedc commit 0b1779e
Showing 1 changed file with 9 additions and 1 deletion.
10 changes: 9 additions & 1 deletion src/components/api/index.d.ts
Original file line number Diff line number Diff line change
@@ -1,9 +1,17 @@
// Config
interface ZIndexOptions {
modal: number;
overlay: number;
menu: number;
tooltip: number;
toast: number;
}

interface APIOptions {
ripple?: boolean;
locale?: string;
autoZIndex?: false;
zIndex?: number;
zIndex?: ZIndexOptions;
appendTo?: 'self' | HTMLElement | undefined | null;
}

Expand Down

0 comments on commit 0b1779e

Please sign in to comment.