UNPKG

hastebin-paste

Version:

A simple hastebin client for uploading things to hastebin.com with error code help that make it easier for you to debug!

11 lines (9 loc) 281 B
declare module "hastebin-paste" { export default function hastebin(input: string, options?: HasteBinOptions): Promise<string>; export interface HasteBinOptions { url?: string; extension?: string; message?: string; prefix?: string; }; }