mirror of
https://github.com/docker/build-push-action.git
synced 2025-08-23 07:38:11 +03:00
4 lines
146 B
TypeScript
4 lines
146 B
TypeScript
declare module 'md5' {
|
|
function md5(data: string, options?: {encoding: string; asBytes: boolean; asString: boolean}): string;
|
|
export = md5;
|
|
}
|