mirror of
https://github.com/CorentinTh/it-tools.git
synced 2025-05-08 23:25:03 -04:00
![renovate[bot]](/assets/img/avatar_default.png)
* chore(deps): update dependency typescript to v5 * chore(deps): switched to fucking typescript v5 --------- Co-authored-by: renovate[bot] <29139614+renovate[bot]@users.noreply.github.com> Co-authored-by: Corentin Thomasset <corentin.thomasset74@gmail.com>
35 lines
No EOL
797 B
TypeScript
35 lines
No EOL
797 B
TypeScript
declare module '*.vue' {
|
|
import type { ComponentOptions } from 'vue';
|
|
const Component: ComponentOptions;
|
|
export default Component;
|
|
}
|
|
|
|
declare module '*.md' {
|
|
import type { ComponentOptions } from 'vue';
|
|
const Component: ComponentOptions;
|
|
export default Component;
|
|
}
|
|
|
|
declare module 'iarna-toml-esm' {
|
|
export const parse: (toml: string) => any;
|
|
export const stringify: (obj: any) => string;
|
|
}
|
|
|
|
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;
|
|
} |