import type { FeatureOptions } from './Feature' import { Feature } from './Feature' export type GoalCodeOptions = Omit export class GoalCode extends Feature { public constructor(props: GoalCodeOptions) { super({ ...props, type: GoalCode.type }) } public static readonly type = 'goal-code' }