index.d.ts 759 B

1234567891011121314151617
  1. export interface Options {
  2. autoImport?: importPluginOptions;
  3. styles?: true | 'none' | 'expose' | 'sass' | {
  4. configFile: string;
  5. };
  6. /** @internal Only for testing */
  7. stylesTimeout?: number;
  8. }
  9. export declare type importPluginOptions = boolean;
  10. export { generateImports } from './imports/generateImports';
  11. export { cacheDir, writeStyles } from './styles/writeStyles';
  12. export declare function resolveVuetifyBase(): string;
  13. export declare function isObject(value: any): value is object;
  14. export declare function includes(arr: any[], val: any): boolean;
  15. export declare function normalizePath(p: string): string;
  16. export declare function toKebabCase(str?: string): string;
  17. export declare const transformAssetUrls: Record<string, string[]>;