mirror of
https://github.com/docker/build-push-action.git
synced 2026-05-02 10:12:13 +03:00
22acf7cb32
Signed-off-by: CrazyMax <crazy-max@users.noreply.github.com>
5 lines
146 B
TypeScript
5 lines
146 B
TypeScript
declare module 'md5' {
|
|
function md5(data: string, options?: {encoding: string; asBytes: boolean; asString: boolean}): string;
|
|
export = md5;
|
|
}
|