7 lines
100 B
TypeScript
7 lines
100 B
TypeScript
|
import { HashDef } from "./hashDef";
|
||
|
|
||
|
export type FileDef = {
|
||
|
url: string;
|
||
|
hashes?: HashDef[];
|
||
|
};
|