main
Last change
on this file since 65b6638 was d24f17c, checked in by Aleksandar Panovski <apano77@…>, 15 months ago |
Initial commit
|
-
Property mode
set to
100644
|
File size:
252 bytes
|
Line | |
---|
1 | import { ParameterElement } from '@swagger-api/apidom-ns-openapi-3-0';
|
---|
2 | class Parameter extends ParameterElement {
|
---|
3 | get schema() {
|
---|
4 | return this.get('schema');
|
---|
5 | }
|
---|
6 | set schema(schema) {
|
---|
7 | this.set('schema', schema);
|
---|
8 | }
|
---|
9 | }
|
---|
10 | export default Parameter; |
---|
Note:
See
TracBrowser
for help on using the repository browser.