import { ThemeInput, ThemePrepared } from './types'; import { withDebugId } from './withDebugId'; export const createTheme = (themeInput: T, debugId): T => { return withDebugId(themeInput, debugId); };