@civet/core 6.0.2 → 6.1.1

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
@@ -67,6 +67,7 @@ export default abstract class DataProvider<Item, Query, Options, MetaType extend
67
67
  extend(_extend: DataProviderExtend): void;
68
68
  createInstance(): InferInstance<MetaType> | undefined;
69
69
  releaseInstance(_: InferInstance<MetaType>): void;
70
+ normalizeResource(resource: string): string;
70
71
  subscribe(resource: string, callback: () => void): () => void;
71
72
  notify(resource: string): void;
72
73
  get<ResponseI extends Response = Response, QueryI extends Query = Query, OptionsI extends Options = Options, MetaTypeI extends MetaType = MetaType>(resource: string, query: QueryI, options?: OptionsI, meta?: MetaLike<MetaTypeI>, abortSignal?: AbortSignal): Promise<ResponseI>;