feat(pty): expose shells and connect tokens
This commit is contained in:
parent
9de001d92f
commit
dbe7b937ef
6 changed files with 50 additions and 4 deletions
|
|
@ -56,3 +56,10 @@ export const UpdateInput = Schema.Struct({
|
|||
),
|
||||
})
|
||||
export interface UpdateInput extends Schema.Schema.Type<typeof UpdateInput> {}
|
||||
|
||||
export const Shell = Schema.Struct({
|
||||
path: Schema.String,
|
||||
name: Schema.String,
|
||||
acceptable: Schema.Boolean,
|
||||
}).annotate({ identifier: "Pty.Shell" })
|
||||
export interface Shell extends Schema.Schema.Type<typeof Shell> {}
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue