Interface FileIdentifierMapperFactory<T>

Factory that can create FileIdentifierMappers so the base and rootFilePath can be set dynamically. Specifically used when identifiers need to be generated for a new pod (since pod identifiers are generated).

interface FileIdentifierMapperFactory<T> {
    create: ((base: string, rootFilePath: string) => Promise<T>);
}

Type Parameters

Implemented by

Properties

Properties

create: ((base: string, rootFilePath: string) => Promise<T>)