```ts const defaultHogeArgs = { a: true, b: true, }; function exec(opts?: Partial<typeof defaultHogeArgs>) { const opt = { ...defaultHogeArgs, ...opts }; // optを使う } ```