Files
chat/client/packages/plugin-declaration-generator/test/demo/bar.ts

27 lines
326 B
TypeScript
Raw Normal View History

2026-04-25 16:36:34 +08:00
/**
* This is bar
*/
export function bar() {
console.log('Anything else');
}
interface E {
f: symbol;
}
interface Options {
a: number;
b: string;
c: {
d: string;
e: E;
};
}
/**
* This is bar with complex input
*/
export function complexBar(input: Options) {
console.log('Anything else', input);
}