Home
last modified time | relevance | path

Searched defs:foos (Results 1 – 5 of 5) sorted by relevance

/third_party/typescript/tests/baselines/reference/
DbooleanFilterAnyArray.js24 var foos: Array<boolean> variable
36 var foos; variable
37 var foos = [true, true, false, null].filter(function (thing) { return thing !== null; }); variable
DemptyObjectNotSubtypeOfIndexSignatureContainingObject1.js54 function fooToBar(foos) { argument
DemptyObjectNotSubtypeOfIndexSignatureContainingObject2.js55 function fooToBar(foos) { argument
/third_party/typescript/tests/cases/compiler/
DbooleanFilterAnyArray.ts23 var foos: Array<boolean> variable
24 var foos = [true, true, false, null].filter((thing): thing is boolean => thing !== null) variable
/third_party/typescript/tests/cases/conformance/ambient/
DambientDeclarationsPatterns.ts12 export const foos: string; constant