UNPKG

test-real-styles

Version:

utilities to test real styling of dom elements

11 lines (10 loc) 281 B
export type Styles = string | { url?: string; path?: string; content?: string; }; export declare function resolveStyleInput(stylesP: Styles | Promise<Styles>): Promise<{ url?: string | undefined; path?: string | undefined; content?: string | undefined; }>;