2025-10-01 19:55:38 +02:00

23 lines
1.3 KiB
TypeScript

/// <reference types="node" />
import { IResource, SimpleCallback, ReturnCallback, Return2Callback, ResourceType } from '../IResource';
import { Readable, Writable } from 'stream';
import { StandardResource } from './StandardResource';
import { ResourceChildren } from './ResourceChildren';
export declare class RootResource extends StandardResource {
children: ResourceChildren;
constructor();
create(callback: SimpleCallback): void;
delete(callback: SimpleCallback): void;
moveTo(parent: IResource, newName: string, overwrite: boolean, callback: SimpleCallback): void;
rename(newName: string, callback: Return2Callback<string, string>): void;
webName(callback: ReturnCallback<string>): void;
type(callback: ReturnCallback<ResourceType>): void;
write(targetSource: boolean, callback: ReturnCallback<Writable>): void;
read(targetSource: boolean, callback: ReturnCallback<Readable>): void;
mimeType(targetSource: boolean, callback: ReturnCallback<string>): void;
size(targetSource: boolean, callback: ReturnCallback<number>): void;
addChild(resource: IResource, callback: SimpleCallback): void;
removeChild(resource: IResource, callback: SimpleCallback): void;
getChildren(callback: ReturnCallback<IResource[]>): void;
}