mirror of https://github.com/msgbyte/tailchat
You cannot select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
27 lines
326 B
TypeScript
27 lines
326 B
TypeScript
/**
|
|
* 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);
|
|
}
|