LoadSummarizerSummaryResult TypeAlias
Outcome from loadSummarizerContainerAndMakeSummary(loadSummarizerContainerProps). \
This API is provided for existing users, but is not recommended for new users.
To use, import via @fluidframework/container-loader/legacy
.
For more information about our API support guarantees, see here.
Signature
export type LoadSummarizerSummaryResult = {
readonly success: true;
readonly summaryResults: OnDemandSummaryResults;
} | {
readonly success: false;
readonly error: IErrorBase;
};