Interface SerializedPCDCollection

PCDCollection#serializeCollection returns a stringified instance of this interface, and PCDCollection.deserialize takes a stringified instance of this object and returns a new PCDCollection.

interface SerializedPCDCollection {
    folders: Record<string, string>;
    pcds: SerializedPCD<PCD<unknown, unknown>>[];
}

Properties

Properties

folders: Record<string, string>
pcds: SerializedPCD<PCD<unknown, unknown>>[]

Generated using TypeDoc