namespace DrawFlowGraph {
	export namespace DemoCase {
		interface Static {

			draw(): {
				title: string;
				content: string;
			}

			new(): Clazz;
		}

		interface Clazz {

		}

	}
}
