mirror of
https://github.com/odoo/owl.git
synced 2025-10-06 19:59:41 +07:00
4 lines
66 B
TypeScript
4 lines
66 B
TypeScript
interface Type<T> extends Function {
|
|
new (...args: any[]): T;
|
|
}
|