Public Access
1
0
mirror of https://github.com/docker/build-push-action.git synced 2026-01-27 15:13:10 +03:00
Files
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

5 lines
146 B
TypeScript

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