mirror of
https://github.com/Sevichecc/Urara-Blog.git
synced 2025-05-05 02:59:31 +08:00
8 lines
No EOL
393 B
Text
8 lines
No EOL
393 B
Text
import * as ts from 'typescript';
|
|
/**
|
|
* @param type Type being checked by name.
|
|
* @param allowedNames Symbol names checking on the type.
|
|
* @returns Whether the type is, extends, or contains all of the allowed names.
|
|
*/
|
|
export declare function containsAllTypesByName(type: ts.Type, allowAny: boolean, allowedNames: Set<string>): boolean;
|
|
//# sourceMappingURL=containsAllTypesByName.d.ts.map |