12 lines
263 B
TypeScript
12 lines
263 B
TypeScript
// Types for APIdog/OpenAPI helper models
|
|
export interface ApidogModel {
|
|
/**
|
|
* Path parameter used by the mock/OpenAPI for storage endpoints.
|
|
* Example: "user-123/avatar.jpg"
|
|
*/
|
|
path: string;
|
|
[property: string]: any;
|
|
}
|
|
|
|
export default ApidogModel;
|