react-obsidian
Version:
Dependency injection framework for React and React Native applications
11 lines • 500 B
TypeScript
import { Graph } from './graph/Graph';
declare class ProvidedPropertiesStore {
private readonly providedPropertiesForGraph;
getMangledProperty(graph: Graph, unmangledProp: string): string | undefined;
set(graph: Graph, mangledProperty: string, unmangledProperty: string): void;
getMangledProperties(graph: Graph): string[];
clear(graph: Graph): void;
}
declare const _default: ProvidedPropertiesStore;
export default _default;
//# sourceMappingURL=ProvidedPropertiesStore.d.ts.map