Home
last modified time | relevance | path

Searched refs:DeprecationOptions (Results 1 – 2 of 2) sorted by relevance

/third_party/typescript/src/compiler/
Ddebug.ts15 export interface DeprecationOptions { interface
708 …function createDeprecation(name: string, options: DeprecationOptions & { error: true }): () => nev…
709 function createDeprecation(name: string, options?: DeprecationOptions): () => void;
710 function createDeprecation(name: string, options: DeprecationOptions = {}) {
729 …t function deprecate<F extends (...args: any[]) => any>(func: F, options?: DeprecationOptions): F {
/third_party/typescript/src/deprecatedCompat/
Ddeprecations.ts20 …const factoryDeprecation: DeprecationOptions = { since: "4.0", warnAfter: "4.1", message: "Use the…