12 lines
278 B
TypeScript
12 lines
278 B
TypeScript
/* generated using openapi-typescript-codegen -- do not edit */
|
|
/* istanbul ignore file */
|
|
/* tslint:disable */
|
|
/* eslint-disable */
|
|
import type { Image } from './Image';
|
|
export type Studio = {
|
|
id: number;
|
|
name: string;
|
|
poster?: Image;
|
|
description?: string;
|
|
};
|
|
|