14 lines
No EOL
261 B
TypeScript
14 lines
No EOL
261 B
TypeScript
import type Library from "~/Models/Library";
|
|
|
|
|
|
export const FetchLibraries = async (): Promise<Array<Library>> => {
|
|
return [];
|
|
}
|
|
|
|
export const FetchLibrary = async (id: string): Promise<Library> => {
|
|
return {
|
|
id: "",
|
|
name: "",
|
|
servers: []
|
|
};
|
|
} |