mirror of
https://github.com/gromlab-ru/slm-design.git
synced 2026-08-22 07:30:16 +03:00
9 lines
283 B
TypeScript
9 lines
283 B
TypeScript
|
|
import type { {{name.pascalCase}}Factory } from './types/{{name.kebabCase}}-factory.type'
|
|||
|
|
|
|||
|
|
/**
|
|||
|
|
* Создаёт публичный API бизнес-модуля {{name.pascalCase}}.
|
|||
|
|
*/
|
|||
|
|
export const {{name.camelCase}}Factory: {{name.pascalCase}}Factory = (_deps) => {
|
|||
|
|
return {}
|
|||
|
|
}
|