mirror of
https://gitlab.com/PronounsPage/PronounsPage.git
synced 2025-09-28 23:42:58 -04:00

according to https://nuxt.com/docs/4.x/guide/directory-structure/shared#how-files-are-scanned standard
12 lines
175 B
TypeScript
12 lines
175 B
TypeScript
declare module 'suml' {
|
|
class Suml {
|
|
constructor();
|
|
|
|
parse(content: string): unknown;
|
|
|
|
dump(content: unknown): string;
|
|
}
|
|
|
|
export = Suml;
|
|
}
|