mirror of
https://github.com/docker/build-push-action.git
synced 2026-01-19 08:08:55 +08: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;
|
|
}
|