|
| 1 | +//// [tests/cases/compiler/declarationEmitOptionalMappedTypePropertyNoStrictNullChecks1.ts] //// |
| 2 | + |
| 3 | +=== createApi.ts === |
| 4 | +type Id<T> = { |
| 5 | +>Id : Symbol(Id, Decl(createApi.ts, 0, 0)) |
| 6 | +>T : Symbol(T, Decl(createApi.ts, 0, 8)) |
| 7 | + |
| 8 | + [K in keyof T]: T[K]; |
| 9 | +>K : Symbol(K, Decl(createApi.ts, 1, 3)) |
| 10 | +>T : Symbol(T, Decl(createApi.ts, 0, 8)) |
| 11 | +>T : Symbol(T, Decl(createApi.ts, 0, 8)) |
| 12 | +>K : Symbol(K, Decl(createApi.ts, 1, 3)) |
| 13 | + |
| 14 | +} & {}; |
| 15 | + |
| 16 | +export declare function createApi<Definitions>(_: { endpoints: Definitions }): { |
| 17 | +>createApi : Symbol(createApi, Decl(createApi.ts, 2, 7)) |
| 18 | +>Definitions : Symbol(Definitions, Decl(createApi.ts, 4, 34)) |
| 19 | +>_ : Symbol(_, Decl(createApi.ts, 4, 47)) |
| 20 | +>endpoints : Symbol(endpoints, Decl(createApi.ts, 4, 51)) |
| 21 | +>Definitions : Symbol(Definitions, Decl(createApi.ts, 4, 34)) |
| 22 | + |
| 23 | + [K in keyof Definitions as `use${Capitalize<K & string>}Query`]: () => Id<{ |
| 24 | +>K : Symbol(K, Decl(createApi.ts, 5, 3)) |
| 25 | +>Definitions : Symbol(Definitions, Decl(createApi.ts, 4, 34)) |
| 26 | +>Capitalize : Symbol(Capitalize, Decl(lib.es5.d.ts, --, --)) |
| 27 | +>K : Symbol(K, Decl(createApi.ts, 5, 3)) |
| 28 | +>Id : Symbol(Id, Decl(createApi.ts, 0, 0)) |
| 29 | + |
| 30 | + status: "uninitialized"; |
| 31 | +>status : Symbol(status, Decl(createApi.ts, 5, 77)) |
| 32 | + |
| 33 | + originalArgs?: undefined; |
| 34 | +>originalArgs : Symbol(originalArgs, Decl(createApi.ts, 6, 28)) |
| 35 | + |
| 36 | + }>; |
| 37 | +}; |
| 38 | + |
| 39 | +=== index.ts === |
| 40 | +import { createApi } from "./createApi"; |
| 41 | +>createApi : Symbol(createApi, Decl(index.ts, 0, 8)) |
| 42 | + |
| 43 | +const slice = createApi({ |
| 44 | +>slice : Symbol(slice, Decl(index.ts, 2, 5)) |
| 45 | +>createApi : Symbol(createApi, Decl(index.ts, 0, 8)) |
| 46 | + |
| 47 | + endpoints: { |
| 48 | +>endpoints : Symbol(endpoints, Decl(index.ts, 2, 25)) |
| 49 | + |
| 50 | + test: { |
| 51 | +>test : Symbol(test, Decl(index.ts, 3, 14)) |
| 52 | + |
| 53 | + url: `/user`, |
| 54 | +>url : Symbol(url, Decl(index.ts, 4, 11)) |
| 55 | + |
| 56 | + }, |
| 57 | + }, |
| 58 | +}); |
| 59 | + |
| 60 | +export const { useTestQuery } = slice; |
| 61 | +>useTestQuery : Symbol(useTestQuery, Decl(index.ts, 10, 14)) |
| 62 | +>slice : Symbol(slice, Decl(index.ts, 2, 5)) |
| 63 | + |
0 commit comments