Skip to content

Instantly share code, notes, and snippets.

@okash1n
Created February 27, 2023 00:34
Show Gist options
  • Save okash1n/c97d3a2a75fc0700a532a84f178fcba3 to your computer and use it in GitHub Desktop.
Save okash1n/c97d3a2a75fc0700a532a84f178fcba3 to your computer and use it in GitHub Desktop.
AIと考える起業計画 revision 1
interface Substep {
number: number;
name: string;
description?: string;
substeps?: Substep[];
}
interface Step {
number: number;
name: string;
description?: string;
substeps?: Substep[];
}
const bizPlanSteps: Step[] = [];
@okash1n
Copy link
Author

okash1n commented Feb 27, 2023

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment