mirror of
https://github.com/balena-io/balena-cli.git
synced 2024-12-19 05:37:51 +00:00
83a76f7d6f
Change-Type: patch
39 lines
750 B
TypeScript
39 lines
750 B
TypeScript
declare module 'pkg' {
|
|
export function exec(args: string[]): Promise<void>;
|
|
}
|
|
|
|
declare module 'filehound' {
|
|
export function create(): FileHound;
|
|
|
|
export interface FileHound {
|
|
paths(paths: string[]): FileHound;
|
|
paths(...paths: string[]): FileHound;
|
|
ext(extensions: string[]): FileHound;
|
|
ext(...extensions: string[]): FileHound;
|
|
find(): Promise<string[]>;
|
|
}
|
|
}
|
|
|
|
declare module 'publish-release' {
|
|
interface PublishOptions {
|
|
token: string;
|
|
owner: string;
|
|
repo: string;
|
|
tag: string;
|
|
name: string;
|
|
reuseRelease?: boolean;
|
|
assets: string[];
|
|
}
|
|
|
|
interface Release {
|
|
html_url: string;
|
|
}
|
|
|
|
let publishRelease: (
|
|
args: PublishOptions,
|
|
callback: (e: Error, release: Release) => void,
|
|
) => void;
|
|
|
|
export = publishRelease;
|
|
}
|