/** * adowire — TypeScript decorator barrel * * Re-exports all decorator factory functions for convenient single-import use: * * ```ts * import { Layout, Title } from 'adowire/decorators' * ``` */ export { Computed } from './computed.js'; export { Layout } from './layout.js'; export { Locked } from './locked.js'; export { Title } from './title.js'; export { Validate } from './validate.js';