mirror of
https://github.com/zhigang1992/DefinitelyTyped.git
synced 2026-04-09 09:01:16 +08:00
6 lines
106 B
TypeScript
6 lines
106 B
TypeScript
export class Source {
|
|
body: string;
|
|
name: string;
|
|
constructor(body: string, name?: string);
|
|
}
|