16 lines
142 B
TypeScript

/**
* @kittenipc:api
*/
class IpcApi {
Mul(a: number, b: number): number {
return a * b;
}
}
function main() {
}
main()