Context options.
List of Progressibles.
Optional
options: { Progress list options.
Optional
description?: stringOptional
overlay?: booleanOptional
title?: stringimport {showProgressList} from '@matterway/sdk-progress';
...
await showProgressList(
ctx,
[
{
title: 'Title Progress',
description: 'Example Running Progress',
status: 'running',
},
{
title: 'Title Progress',
description: 'Example Done Progress',
status: 'done',
},
{
title: 'Title Progress',
description: 'Example Pending Progress',
status: 'pending',
},
{
title: 'Title Progress',
description: 'Example Failed Progress',
status: 'failed',
},
],
{
title: 'Title of the Step',
description: 'Description of the Step',
overlay: true,
},
);
Generated using TypeDoc
Shows a list of Progressibles.