Function getConfigSchema

  • Returns {
        $id: string;
        $schema: string;
        additionalProperties: boolean;
        patternProperties: {
            ^[.*]$: {
                patternProperties: {
                    ^[a-z][a-z-]*(.[a-z][a-z-]*)+$: {};
                };
                type: string;
            };
        };
        properties: {
            redis.address: {
                description: string;
                type: string;
            };
            state.allow-in-memory: {
                description: string;
                type: string;
            };
            testing.fixed-date: {
                description: string;
                type: string;
            };
        };
        title: string;
    }

    • $id: string
    • $schema: string
    • additionalProperties: boolean
    • patternProperties: {
          ^[.*]$: {
              patternProperties: {
                  ^[a-z][a-z-]*(.[a-z][a-z-]*)+$: {};
              };
              type: string;
          };
      }
      • ^[.*]$: {
            patternProperties: {
                ^[a-z][a-z-]*(.[a-z][a-z-]*)+$: {};
            };
            type: string;
        }
        • patternProperties: {
              ^[a-z][a-z-]*(.[a-z][a-z-]*)+$: {};
          }
          • ^[a-z][a-z-]*(.[a-z][a-z-]*)+$: {}
          • type: string
      • properties: {
            redis.address: {
                description: string;
                type: string;
            };
            state.allow-in-memory: {
                description: string;
                type: string;
            };
            testing.fixed-date: {
                description: string;
                type: string;
            };
        }
        • redis.address: {
              description: string;
              type: string;
          }
          • description: string
          • type: string
        • state.allow-in-memory: {
              description: string;
              type: string;
          }
          • description: string
          • type: string
        • testing.fixed-date: {
              description: string;
              type: string;
          }
          • description: string
          • type: string
      • title: string

    Generated using TypeDoc