mirror of
https://gitlab.com/PronounsPage/PronounsPage.git
synced 2025-08-03 19:17:07 -04:00
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;
|
|
}
|