mirror of
https://github.com/gromlab-ru/slm-design.git
synced 2026-08-22 07:30:16 +03:00
10 lines
406 B
TypeScript
10 lines
406 B
TypeScript
|
|
import { {{name.camelCase}}Factory } from '../../../business/{{name.kebabCase}}'
|
|||
|
|
import type { {{name.pascalCase}}Api } from '../../../business/{{name.kebabCase}}'
|
|||
|
|
|
|||
|
|
/**
|
|||
|
|
* Создаёт {{name.pascalCase}} business API с runtime-зависимостями приложения.
|
|||
|
|
*/
|
|||
|
|
export const create{{name.pascalCase}}Business = (): {{name.pascalCase}}Api => {
|
|||
|
|
return {{name.camelCase}}Factory({})
|
|||
|
|
}
|