- Fix router import path in main.js - Handle Django REST Framework pagination format in API calls - Add getTemplates function to project API - Restart frontend development server
34 lines
1.1 KiB
TypeScript
34 lines
1.1 KiB
TypeScript
import { TypeComponentsMap } from "../../../utils/vue/icon.js";
|
|
import { AlertProps } from "./alert.js";
|
|
import * as _$vue from "vue";
|
|
|
|
//#region ../../packages/components/alert/src/alert.vue.d.ts
|
|
declare var __VLS_13: {}, __VLS_20: {}, __VLS_22: {};
|
|
type __VLS_Slots = {} & {
|
|
icon?: (props: typeof __VLS_13) => any;
|
|
} & {
|
|
title?: (props: typeof __VLS_20) => any;
|
|
} & {
|
|
default?: (props: typeof __VLS_22) => any;
|
|
};
|
|
declare const __VLS_base: _$vue.DefineComponent<AlertProps, {}, {}, {}, {}, _$vue.ComponentOptionsMixin, _$vue.ComponentOptionsMixin, {
|
|
close: (evt: MouseEvent) => void;
|
|
}, string, _$vue.PublicProps, Readonly<AlertProps> & Readonly<{
|
|
onClose?: ((evt: MouseEvent) => any) | undefined;
|
|
}>, {
|
|
type: keyof typeof TypeComponentsMap;
|
|
title: string;
|
|
description: string;
|
|
closable: boolean;
|
|
closeText: string;
|
|
effect: "light" | "dark";
|
|
}, {}, {}, {}, string, _$vue.ComponentProvideOptions, false, {}, any>;
|
|
declare const __VLS_export: __VLS_WithSlots<typeof __VLS_base, __VLS_Slots>;
|
|
declare const _default: typeof __VLS_export;
|
|
type __VLS_WithSlots<T, S> = T & {
|
|
new (): {
|
|
$slots: S;
|
|
};
|
|
};
|
|
//#endregion
|
|
export { _default as default }; |