/**
 * The base type for all resources.
 */
export interface BlueprintResource {
  type: string
  name: string
}
