async-neocities
Version:
A library and bin to deploy to neocities
34 lines • 700 B
TypeScript
export type ApiKeyResponse = {
result: "success";
api_key: string;
};
export type SiteFileList = {
result: "success";
files: {
path: string;
is_directory: boolean;
size?: number;
updated_at: string;
sha1_hash?: string;
}[];
};
export type SiteInfo = {
result: "success";
info: {
sitename: string;
hits: number;
created_at: string;
last_updated: string;
domain: string | null;
tags: string[];
};
};
export type MessageResult = {
result: "success";
message: string;
};
export type FileUpload = {
name: string;
path: string;
};
//# sourceMappingURL=neocities.d.ts.map