/**
*
* This is a bar thing
*
*/
export type Bar = "one" | "two" | "three";
export type Foo = number;
/**
*
* generated Title when there is none
*
*/
export type UnorderedSetOfFoojlMI8SpR = Foo[];
export type Baz = number;
export interface Example {
thing: Bar;
otherThing?: UnorderedSetOfFoojlMI8SpR;
baz?: Baz;
[k: string]: any;
}