8 lines
No EOL
148 B
TypeScript
8 lines
No EOL
148 B
TypeScript
import type Item from "./Item";
|
|
|
|
export default interface Library {
|
|
name: string;
|
|
id: string;
|
|
servers: Array<string>;
|
|
items?: Array<Item>;
|
|
} |