-
Notifications
You must be signed in to change notification settings - Fork 4
Closed
Labels
help wantedExtra attention is neededExtra attention is needed
Description
Description
Each segment should have local public-api file declaration
/** @path features/smth/index.ts */
// Fail
export { SubmitButton } from "./ui/button";
export { SmthForm } from "./ui/form";
// Pass
export { SubmitButton, SmthForm } from "./ui";
/** @path features/smth/index.ts */
// Fail
export * from "./model/actions";
export { selectSmthById } from "./model/selectors";
// Pass
export * from "./model";
export * as smthModel from "./model";
export { selectSmthById, ... } from "./model";
ToRefine
shared/ui
no-required reexports?shared/lib
no-required reexports?
Metadata
Metadata
Assignees
Labels
help wantedExtra attention is neededExtra attention is needed