mirror of
https://github.com/docker/build-push-action.git
synced 2026-02-14 15:20:33 +00:00
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;
|
|
}
|