mirror of
https://github.com/swc-project/swc.git
synced 2024-12-01 01:13:56 +03:00
50 lines
1.2 KiB
TypeScript
50 lines
1.2 KiB
TypeScript
// @strict: true
|
|
// @target: es2017
|
|
// #41347, based on microsoft/rushstack
|
|
|
|
// Mixin utilities
|
|
export type Constructor<T = {}> = new (...args: any[]) => T;
|
|
export type PropertiesOf<T> = { [K in keyof T]: T[K] };
|
|
|
|
interface IApiItemConstructor extends Constructor<ApiItem>, PropertiesOf<typeof ApiItem> {}
|
|
|
|
// Base class
|
|
class ApiItem {
|
|
public get members(): ReadonlyArray<ApiItem> {
|
|
return [];
|
|
}
|
|
}
|
|
|
|
// Normal subclass
|
|
class ApiEnumMember extends ApiItem {
|
|
}
|
|
|
|
// Mixin base class
|
|
interface ApiItemContainerMixin extends ApiItem {
|
|
readonly members: ReadonlyArray<ApiItem>;
|
|
}
|
|
|
|
function ApiItemContainerMixin<TBaseClass extends IApiItemConstructor>(
|
|
baseClass: TBaseClass
|
|
): TBaseClass & (new (...args: any[]) => ApiItemContainerMixin) {
|
|
abstract class MixedClass extends baseClass implements ApiItemContainerMixin {
|
|
public constructor(...args: any[]) {
|
|
super(...args);
|
|
}
|
|
|
|
public get members(): ReadonlyArray<ApiItem> {
|
|
return [];
|
|
}
|
|
}
|
|
|
|
return MixedClass;
|
|
}
|
|
|
|
// Subclass inheriting from mixin
|
|
export class ApiEnum extends ApiItemContainerMixin(ApiItem) {
|
|
// This worked prior to TypeScript 4.0:
|
|
public get members(): ReadonlyArray<ApiEnumMember> {
|
|
return [];
|
|
}
|
|
}
|