use interface export

This commit is contained in:
grafixeyehero 2022-10-03 01:44:54 +03:00
parent df4de415b2
commit 0acac1b52d

View file

@ -1,4 +1,4 @@
export type QueryI = { export interface QueryI {
SortBy?: string; SortBy?: string;
SortOrder?: string; SortOrder?: string;
IncludeItemTypes?: string; IncludeItemTypes?: string;
@ -16,7 +16,7 @@ export type QueryI = {
NameStartsWith?: string; NameStartsWith?: string;
} }
export type CardOptionsI = { export interface CardOptionsI {
itemsContainer?: HTMLElement; itemsContainer?: HTMLElement;
parentContainer?: HTMLElement; parentContainer?: HTMLElement;
allowBottomPadding?: boolean; allowBottomPadding?: boolean;