tspace-nfs
Version:
tspace-nfs is a Network File System (NFS) and provides both server and client capabilities for accessing files over a network.
38 lines (37 loc) • 699 B
TypeScript
export type TCredentials = {
token: string;
secret: string;
bucket: string;
};
export type TSetup = {
logo?: {
index?: string;
login?: string;
fav?: string;
};
name?: string;
title?: string;
subtitle?: string;
description?: string;
};
export type TMonitors = {
host: string | null;
memory: {
total: number;
heapTotal: number;
heapUsed: number;
external: number;
rss: number;
};
cpu: {
total: number;
max: number;
min: number;
avg: number;
speed: number;
};
};
export type TLoginCrentials = {
username: string;
password: string;
};