mirror of
https://github.com/cool-team-official/cool-admin-vue.git
synced 2025-12-21 21:10:20 +00:00
67 lines
1.4 KiB
TypeScript
67 lines
1.4 KiB
TypeScript
/* eslint-disable */
|
|
declare module "*.vue" {
|
|
import type { DefineComponent } from "vue";
|
|
const component: DefineComponent<{}, {}, any>;
|
|
export default component;
|
|
}
|
|
|
|
declare module "@cool-vue/crud" {
|
|
import type { ClContextMenu } from "@cool-vue/crud/types";
|
|
import type { Plugin } from "vue";
|
|
|
|
const ContextMenu: ClContextMenu;
|
|
const Crud: Plugin;
|
|
|
|
export { ContextMenu, Crud };
|
|
export * from "@cool-vue/crud";
|
|
}
|
|
|
|
declare module "array.prototype.flat" {
|
|
function Flat(list: any[]): any[];
|
|
export default Flat;
|
|
}
|
|
|
|
declare module "vuedraggable/src/vuedraggable" {
|
|
const d: any;
|
|
export default d;
|
|
}
|
|
|
|
declare module "clone-deep" {
|
|
function CloneDeep(data: any): any;
|
|
export default CloneDeep;
|
|
}
|
|
|
|
declare module "store" {
|
|
export function set(key: string, value: any): void;
|
|
export function get(key: string): any;
|
|
export function remove(key: string): void;
|
|
export function clearAll(): void;
|
|
export function each(callback: Function): void;
|
|
}
|
|
|
|
declare module "quill" {
|
|
const Quill: any;
|
|
export default Quill;
|
|
}
|
|
|
|
declare module "codemirror" {
|
|
export function fromTextArea(el: any, options?: any): void;
|
|
}
|
|
|
|
declare module "js-beautify" {
|
|
export default function (text: string): void;
|
|
}
|
|
|
|
declare module "nprogress" {
|
|
export function configure(options: any): void;
|
|
export function start(): void;
|
|
export function done(): void;
|
|
}
|
|
|
|
declare module "mockjs" {
|
|
const Mock: any;
|
|
export default Mock;
|
|
}
|
|
|
|
declare const __PROXY_LIST__: any[];
|