Type Alias SecretStoreSchemaSkeleton

SecretStoreSchemaSkeleton: {
    properties: Record<
        string,
        {
            description: string;
            exampleValue: string;
            propertyOrder: number;
            required: boolean;
            title: string;
            type: string;
        },
    >;
    type: string;
}

Type declaration

  • properties: Record<
        string,
        {
            description: string;
            exampleValue: string;
            propertyOrder: number;
            required: boolean;
            title: string;
            type: string;
        },
    >
  • type: string