2022-04-12 13:24:14 +02:00
|
|
|
declare module '*.vue' {
|
2023-08-21 19:57:59 +00:00
|
|
|
import type { ComponentOptions } from 'vue';
|
2022-04-12 13:24:14 +02:00
|
|
|
const Component: ComponentOptions;
|
|
|
|
export default Component;
|
|
|
|
}
|
|
|
|
|
|
|
|
declare module '*.md' {
|
2023-08-21 19:57:59 +00:00
|
|
|
import type { ComponentOptions } from 'vue';
|
2022-04-12 13:24:14 +02:00
|
|
|
const Component: ComponentOptions;
|
|
|
|
export default Component;
|
|
|
|
}
|
2023-05-16 23:12:37 +02:00
|
|
|
|
2023-06-23 21:33:54 +02:00
|
|
|
declare module 'iarna-toml-esm' {
|
|
|
|
export const parse: (toml: string) => any;
|
|
|
|
export const stringify: (obj: any) => string;
|
2023-08-21 19:57:59 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
declare module 'emojilib' {
|
|
|
|
const lib: Record<string, string[]>;
|
|
|
|
export default lib;
|
|
|
|
}
|
|
|
|
|
|
|
|
declare module 'unicode-emoji-json' {
|
|
|
|
const emoji: Record<string, {
|
|
|
|
name: string;
|
|
|
|
slug: string;
|
|
|
|
group: string;
|
|
|
|
emoji_version: string;
|
|
|
|
unicode_version: string;
|
|
|
|
skin_tone_support: boolean;
|
|
|
|
skin_tone_support_unicode_version: string;
|
|
|
|
}>;
|
|
|
|
|
|
|
|
export default emoji;
|
2023-11-12 23:22:41 +01:00
|
|
|
}
|
|
|
|
|
|
|
|
declare module 'pdf-signature-reader' {
|
|
|
|
const verifySignature: (pdf: ArrayBuffer) => ({signatures: SignatureInfo[]});
|
|
|
|
|
|
|
|
export default verifySignature;
|
2023-06-23 21:33:54 +02:00
|
|
|
}
|