1// deno-lint-ignore-file 2/* istanbul ignore file */ 3/* tslint:disable */ 4/* eslint-disable */ 5 6export type splitTest = { 7 id?: string; 8 site_id?: string; 9 name?: string; 10 path?: string; 11 branches?: Array<any>; 12 active?: boolean; 13 created_at?: string; 14 updated_at?: string; 15 unpublished_at?: string; 16}; 17 18