| 858 | returns: T[]; |
| 859 | } |
| 860 | interface ApiInfo<T extends ApiData | JsApiData> { |
| 861 | named_endpoints: { |
| 862 | [key: string]: EndpointInfo<T>; |
| 863 | }; |
| 864 | unnamed_endpoints: { |
| 865 | [key: string]: EndpointInfo<T>; |
| 866 | }; |
| 867 | } |
| 868 | |
| 869 | function get_type( |
| 870 | type: { [key: string]: any }, |
nothing calls this directly
no outgoing calls
no test coverage detected