@eighty4/c2
Version:
Cross platform cloud config tooling for cloud-init
18 lines • 625 B
TypeScript
import { type Attachment } from './attachments.ts';
export declare function startUserDataHttp(port: number, userDataDir: string): void;
export declare class MultipartMessage {
#private;
static createBoundary(): string;
constructor(attachments: Array<Attachment>, boundary?: string);
get attachments(): Array<MultipartAttachment>;
get boundary(): string;
get headers(): Record<string, string>;
toHTTP(): string;
responseBody(): string;
}
export declare class MultipartAttachment {
#private;
constructor(attachment: Attachment);
toHTTP(): string;
}
//# sourceMappingURL=http.d.ts.map