modded7/tools/types/fileDef.ts

7 lines
100 B
TypeScript
Raw Normal View History

import { HashDef } from "./hashDef";
export type FileDef = {
url: string;
hashes?: HashDef[];
};