Skip to content
Merged
Changes from 1 commit
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Prev Previous commit
Next Next commit
Update API docs
  • Loading branch information
trekforever committed Apr 5, 2024
commit 44101eac8cc637ff67b11155ea6f18c138611a25
5 changes: 3 additions & 2 deletions etc/firebase-admin.remote-config.api.md
Original file line number Diff line number Diff line change
Expand Up @@ -45,7 +45,8 @@ export interface InAppDefaultValue {

// @public
export interface InitServerTemplateOptions extends GetServerTemplateOptions {
template?: ServerTemplateData | string;
// Warning: (ae-forgotten-export) The symbol "ServerTemplateDataType" needs to be exported by the entry point index.d.ts
template?: ServerTemplateDataType;
}

// @public
Expand Down Expand Up @@ -185,7 +186,7 @@ export interface ServerConfig {
export interface ServerTemplate {
evaluate(context?: EvaluationContext): ServerConfig;
load(): Promise<void>;
set(template: ServerTemplateData | string): void;
set(template: ServerTemplateDataType): void;
toJSON(): ServerTemplateData;
}

Expand Down