Tracking de l'application VApp (IHM du jeu)
This commit is contained in:
28
VApp/node_modules/@vuetify/loader-shared/dist/index.d.ts
generated
vendored
Normal file
28
VApp/node_modules/@vuetify/loader-shared/dist/index.d.ts
generated
vendored
Normal file
@@ -0,0 +1,28 @@
|
||||
import * as Components from 'vuetify/components';
|
||||
import * as Directives from 'vuetify/directives';
|
||||
|
||||
declare function generateImports(source: string, options: Options): {
|
||||
code: string;
|
||||
source: string;
|
||||
};
|
||||
|
||||
interface Options {
|
||||
autoImport?: ImportPluginOptions;
|
||||
styles?: true | 'none' | 'sass' | {
|
||||
configFile: string;
|
||||
};
|
||||
}
|
||||
interface ObjectImportPluginOptions {
|
||||
labs?: boolean;
|
||||
ignore?: (keyof typeof Components | keyof typeof Directives)[];
|
||||
}
|
||||
type ImportPluginOptions = boolean | ObjectImportPluginOptions;
|
||||
|
||||
declare function resolveVuetifyBase(): string;
|
||||
declare function isObject(value: any): value is object;
|
||||
declare function includes(arr: any[], val: any): boolean;
|
||||
declare function normalizePath(p: string): string;
|
||||
declare function toKebabCase(str?: string): string;
|
||||
declare const transformAssetUrls: Record<string, string[]>;
|
||||
|
||||
export { type ImportPluginOptions, type ObjectImportPluginOptions, type Options, generateImports, includes, isObject, normalizePath, resolveVuetifyBase, toKebabCase, transformAssetUrls };
|
||||
Reference in New Issue
Block a user