File tree Expand file tree Collapse file tree 2 files changed +0
-7
lines changed Expand file tree Collapse file tree 2 files changed +0
-7
lines changed Original file line number Diff line number Diff line change @@ -171,10 +171,6 @@ $defs:
171
171
description : |
172
172
The default value for this parameter, if none was given in the call to the function.
173
173
This property automatically implicitly marks this parameter as optional.
174
- optional :
175
- type : boolean
176
- default : false
177
- description : If set to true, this parameter is optional.
178
174
179
175
returns :
180
176
type : object
Original file line number Diff line number Diff line change @@ -5,15 +5,12 @@ import type { FunctionType } from './types';
5
5
6
6
type FunctionItem = Awaited < ReturnType < typeof getCollection > > [ number ] ;
7
7
8
- // Define a structure for function parameters
9
8
type FunctionParameter = {
10
9
name : string ;
11
10
type : string ;
12
11
description ?: string ;
13
- optional ?: boolean ;
14
12
} ;
15
13
16
- // Define a structure for the details expected within shared/client/server
17
14
type FunctionDetails = {
18
15
description ?: string ;
19
16
pair ?: boolean ;
You can’t perform that action at this time.
0 commit comments