AppConfig
Home > @backstage/config
> AppConfig
A serialized form of configuration data that carries additional context.
Signature:
export type AppConfig = {
context: string;
data: JsonObject;
filteredKeys?: string[];
deprecatedKeys?: {
key: string;
description: string;
}[];
};
References: JsonObject