Skip to content

Commit

Permalink
chore(types): add specFileName default value to code doc
Browse files Browse the repository at this point in the history
Co-authored-by: Micael Levi L. Cavalcante <mllc@icomp.ufam.edu.br>
  • Loading branch information
garritfra and micalevisk committed Jun 26, 2022
1 parent 0c5dbf5 commit 95bc2f7
Show file tree
Hide file tree
Showing 13 changed files with 13 additions and 0 deletions.
1 change: 1 addition & 0 deletions src/lib/class/class.schema.d.ts
Original file line number Diff line number Diff line change
Expand Up @@ -23,6 +23,7 @@ export interface ClassOptions {
spec?: boolean;
/**
* Specifies the file suffix of spec files.
* @default "spec"
*/
specFileSuffix?: string;
/**
Expand Down
1 change: 1 addition & 0 deletions src/lib/controller/controller.schema.d.ts
Original file line number Diff line number Diff line change
Expand Up @@ -39,6 +39,7 @@ export interface ControllerOptions {
spec?: boolean;
/**
* Specifies the file suffix of spec files.
* @default "spec"
*/
specFileSuffix?: string;
/**
Expand Down
1 change: 1 addition & 0 deletions src/lib/filter/filter.schema.d.ts
Original file line number Diff line number Diff line change
Expand Up @@ -23,6 +23,7 @@ export interface FilterOptions {
spec?: boolean;
/**
* Specifies the file suffix of spec files.
* @default "spec"
*/
specFileSuffix?: string;
/**
Expand Down
1 change: 1 addition & 0 deletions src/lib/gateway/gateway.schema.d.ts
Original file line number Diff line number Diff line change
Expand Up @@ -23,6 +23,7 @@ export interface GatewayOptions {
spec?: boolean;
/**
* Specifies the file suffix of spec files.
* @default "spec"
*/
specFileSuffix?: string;
/**
Expand Down
1 change: 1 addition & 0 deletions src/lib/guard/guard.schema.d.ts
Original file line number Diff line number Diff line change
Expand Up @@ -23,6 +23,7 @@ export interface GuardOptions {
spec?: boolean;
/**
* Specifies the file suffix of spec files.
* @default "spec"
*/
specFileSuffix?: string;
/**
Expand Down
1 change: 1 addition & 0 deletions src/lib/interceptor/interceptor.schema.d.ts
Original file line number Diff line number Diff line change
Expand Up @@ -23,6 +23,7 @@ export interface InterceptorOptions {
spec?: boolean;
/**
* Specifies the file suffix of spec files.
* @default "spec"
*/
specFileSuffix?: string;
/**
Expand Down
1 change: 1 addition & 0 deletions src/lib/middleware/middleware.schema.d.ts
Original file line number Diff line number Diff line change
Expand Up @@ -23,6 +23,7 @@ export interface MiddlewareOptions {
spec?: boolean;
/**
* Specifies the file suffix of spec files.
* @default "spec"
*/
specFileSuffix?: string;
/**
Expand Down
1 change: 1 addition & 0 deletions src/lib/pipe/pipe.schema.d.ts
Original file line number Diff line number Diff line change
Expand Up @@ -23,6 +23,7 @@ export interface PipeOptions {
spec?: boolean;
/**
* Specifies the file suffix of spec files.
* @default "spec"
*/
specFileSuffix?: string;
/**
Expand Down
1 change: 1 addition & 0 deletions src/lib/provider/provider.schema.d.ts
Original file line number Diff line number Diff line change
Expand Up @@ -39,6 +39,7 @@ export interface ProviderOptions {
spec?: boolean;
/**
* Specifies the file suffix of spec files.
* @default "spec"
*/
specFileSuffix?: string;
/**
Expand Down
1 change: 1 addition & 0 deletions src/lib/resolver/resolver.schema.d.ts
Original file line number Diff line number Diff line change
Expand Up @@ -23,6 +23,7 @@ export interface ResolverOptions {
spec?: boolean;
/**
* Specifies the file suffix of spec files.
* @default "spec"
*/
specFileSuffix?: string;
/**
Expand Down
1 change: 1 addition & 0 deletions src/lib/resource/resource.schema.d.ts
Original file line number Diff line number Diff line change
Expand Up @@ -23,6 +23,7 @@ export interface ResourceOptions {
spec?: boolean;
/**
* Specifies the file suffix of spec files.
* @default "spec"
*/
specFileSuffix?: string;
/**
Expand Down
1 change: 1 addition & 0 deletions src/lib/service/service.schema.d.ts
Original file line number Diff line number Diff line change
Expand Up @@ -39,6 +39,7 @@ export interface ServiceOptions {
spec?: boolean;
/**
* Specifies the file suffix of spec files.
* @default "spec"
*/
specFileSuffix?: string;
/**
Expand Down
1 change: 1 addition & 0 deletions src/lib/sub-app/sub-app.schema.d.ts
Original file line number Diff line number Diff line change
Expand Up @@ -19,6 +19,7 @@ export interface SubAppOptions {
rootDir?: string | Path;
/**
* Specifies the file suffix of spec files.
* @default "spec"
*/
specFileSuffix?: string;
sourceRoot?: string;
Expand Down

0 comments on commit 95bc2f7

Please sign in to comment.