summaryrefslogtreecommitdiff
path: root/deps/npm/node_modules/tuf-js/dist/utils/types.d.ts
blob: 24319ddf7bb6bc39e992082d9dd18fa7a4b7ec4e (plain)
1
2
3
4
5
6
7
8
9
10
export declare enum MetadataKind {
    Root = "root",
    Timestamp = "timestamp",
    Snapshot = "snapshot",
    Targets = "targets"
}
export type JSONObject = {
    [key: string]: JSONValue;
};
export type JSONValue = null | boolean | number | string | JSONValue[] | JSONObject;