mirror of
https://github.com/block/goose.git
synced 2026-07-17 12:56:20 +02:00
a89fa18502
Co-authored-by: Zane Staggs <zane@squareup.com>
7 lines
152 B
TypeScript
7 lines
152 B
TypeScript
export default interface ParameterSchema {
|
|
name: string;
|
|
is_secret: boolean;
|
|
required?: boolean;
|
|
default?: string; // optional default values
|
|
}
|