12 lines
345 B
TypeScript
12 lines
345 B
TypeScript
import { OnDestroy, Type } from '@angular/core';
|
|
/**
|
|
* Extract type arguments from Angular Directive/Component
|
|
*
|
|
* @internal
|
|
*/
|
|
export declare function extractNgParamTypes(type: Type<unknown>): unknown[] | undefined;
|
|
/**
|
|
* @internal
|
|
*/
|
|
export declare function isOnDestroy(obj: unknown): obj is OnDestroy;
|
|
//# sourceMappingURL=util.d.ts.map
|