mirror of
https://github.com/zoriya/Kyoo.git
synced 2026-01-08 05:00:37 -05:00
7 lines
102 B
TypeScript
7 lines
102 B
TypeScript
import { IResource } from "./resource";
|
|
|
|
export interface Studio extends IResource
|
|
{
|
|
name: string;
|
|
}
|