UNPKG
ts-odata-client
Version:
latest (2.0.2)
2.0.2
2.0.1
2.0.0
2.0.0-preview3
2.0.0-preview2.9
2.0.0-preview2
2.0.0-preview
1.0.4
1.0.3
1.0.2
1.0.1
1.0.0
0.1.0
0.0.9
0.0.8
0.0.7
0.0.6
0.0.5
OData TypeScript Client
github.com/cbrianball/ts-odata-client
cbrianball/ts-odata-client
ts-odata-client
/
lib
/
FieldsForType.d.ts
5 lines
(4 loc)
•
137 B
TypeScript
View Raw
1
2
3
4
5
/** * Returns all fields within type T that are strings (e.g., not symbols or numbers) */
export
type
FieldsFor<T> =
string
& keyof T;