build-push-action/src/md5.d.ts
CrazyMax 22acf7cb32
Test GitHub Cache
Signed-off-by: CrazyMax <crazy-max@users.noreply.github.com>
2020-08-16 22:31:37 +02:00

4 lines
146 B
TypeScript

declare module 'md5' {
function md5(data: string, options?: {encoding: string; asBytes: boolean; asString: boolean}): string;
export = md5;
}