Skip to content

Commit

Permalink
Fix ts type
Browse files Browse the repository at this point in the history
  • Loading branch information
Vadorequest committed Jun 3, 2020
1 parent 3eb5f50 commit 7e8243e
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/types/data/Theme.ts
Original file line number Diff line number Diff line change
Expand Up @@ -5,6 +5,6 @@ import { Customer } from './Customer';
export declare type Theme = {
customer: AirtableRecord<Customer> | string[]; // Stored as an array of strings on AT API, converted to a Customer object once sanitised
id?: number;
logo?: AirtableRecord<Asset> | [AirtableRecord<Asset>]; // Stored as an array on AT API, converted to an Asset object once sanitised
logo?: AirtableRecord<Asset> | AirtableRecord<Asset>[]; // Stored as an array on AT API, converted to an Asset object once sanitised
primaryColor?: string;
};

0 comments on commit 7e8243e

Please sign in to comment.