Skip to content

Files

Latest commit

a70806c · Feb 5, 2023

History

History
20 lines (18 loc) · 403 Bytes

api-report.md

File metadata and controls

20 lines (18 loc) · 403 Bytes

API Report File for "@backstage/backend-dev-utils"

Do not edit this file. It is a report generated by API Extractor.

// @public
export class DevDataStore {
  static get(): DevDataStore | undefined;
  load<T>(key: string): Promise<{
    loaded: boolean;
    data: T;
  }>;
  save<T>(
    key: string,
    data: T,
  ): Promise<{
    saved: boolean;
  }>;
}