mirror of
https://github.com/flarum/framework.git
synced 2024-12-05 09:03:36 +08:00
c3a684c7ed
Includes transpiled JS/TS, and Typescript declaration files (typings). [skip ci]
5 lines
126 B
TypeScript
5 lines
126 B
TypeScript
/**
|
|
* Check if class A is the same as or a subclass of class B.
|
|
*/
|
|
export default function subclassOf(A: any, B: any): any;
|