Skip to content

Commit

Permalink
Merge pull request #7 from CloudCannon/fix/missing-types
Browse files Browse the repository at this point in the history
fix: add missing types
  • Loading branch information
rphillips-cc authored Jul 26, 2024
2 parents 16a62fc + 0c70ff5 commit bca5334
Showing 1 changed file with 6 additions and 3 deletions.
9 changes: 6 additions & 3 deletions src/index.d.ts
Original file line number Diff line number Diff line change
Expand Up @@ -791,12 +791,12 @@ export interface ObjectInputOptions extends BaseInputOptions<EmptyTypeObject> {
* Allows you to group the inputs inside this object together without changing the data structure.
*/
groups?: ObjectInputGroup[];

/**
* Controls which order input groups and ungrouped inputs appear in.
*/
place_groups_below?: boolean;

/**
* Controls whether or not labels on mutable object entries are formatted.
*/
Expand Down Expand Up @@ -883,7 +883,8 @@ export interface ReducedPaths {
*/
dam_static?: string;
/**
* When set to true, CloudCannon will reference files relative to the path of the file they were uploaded to.
* When set to true, CloudCannon will reference files relative to the path of the file they were
* uploaded to.
*/
uploads_use_relative_path?: boolean;
}
Expand Down Expand Up @@ -1460,6 +1461,8 @@ export type SsgKey =
| 'nuxtjs'
| 'sphinx'
| 'static'
| 'other'
| 'legacy'
| 'unknown';

export interface DefaultConfiguration extends Cascade, WithSnippets {
Expand Down

0 comments on commit bca5334

Please sign in to comment.