modded7/buildtools/types/fileDef.ts
Exa 7a329bc07b Add Nomifactory's build scripts
Modified slightly to use LICENSE rather than LICENSE.md
2022-02-10 12:07:06 -08:00

7 lines
100 B
TypeScript

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