@rxdi/ui-kit
Version:
UI Components for building graphql-server website
13 lines (12 loc) • 409 B
TypeScript
import { InjectionToken } from '@rxdi/core';
import { CSSResult } from '@rxdi/lit-html';
export interface Component extends Function {
is?(): string;
}
export declare const MODAL_DIALOG_DATA: InjectionToken<unknown>;
export declare const MODAL_DIALOG_OPTIONS: InjectionToken<unknown>;
export interface MODAL_DIALOG_OPTIONS {
backdropClose?: boolean;
style?: CSSResult;
hideScroll?: boolean;
}