mirror of
https://github.com/zoriya/Kyoo.git
synced 2025-06-01 04:34:50 -04:00
9 lines
131 B
TypeScript
9 lines
131 B
TypeScript
import { IResource } from "./resource";
|
|
|
|
export interface Library extends IResource
|
|
{
|
|
id: number;
|
|
slug: string;
|
|
name: string;
|
|
}
|