2017-12-13 19:55:08 +00:00
|
|
|
/// <reference types="node" />
|
|
|
|
|
import { CommandsBase } from './CommandsBase';
|
|
|
|
|
import { UUID } from '../UUID';
|
2018-10-10 10:12:20 +01:00
|
|
|
import { HTTPAssets } from '../..';
|
2017-12-13 19:55:08 +00:00
|
|
|
export declare class AssetCommands extends CommandsBase {
|
|
|
|
|
downloadAsset(type: HTTPAssets, uuid: UUID): Promise<Buffer>;
|
|
|
|
|
uploadAsset(type: HTTPAssets, data: Buffer, name: string, description: string): Promise<UUID>;
|
|
|
|
|
}
|