mirror of
https://github.com/pezkuwichain/pezkuwi-common.git
synced 2026-04-22 05:38:03 +00:00
8 lines
170 B
TypeScript
8 lines
170 B
TypeScript
interface Class {
|
|
prototype: object;
|
|
super_: Class;
|
|
[key: string]: unknown;
|
|
}
|
|
export default function inherits(child: Class, parent: Class): void;
|
|
export {};
|