UNPKG

@v4fire/client

Version:

V4Fire client core library

29 lines (25 loc) 518 B
/*! * V4Fire Client Core * https://github.com/V4Fire/Client * * Released under the MIT license * https://github.com/V4Fire/Client/blob/master/LICENSE */ /** * [[include:traits/i-width/README.md]] * @packageDocumentation */ import type { ModsDecl } from 'super/i-block/i-block'; // eslint-disable-next-line @typescript-eslint/no-extraneous-class export default abstract class iWidth { /** * Trait modifiers */ static readonly mods: ModsDecl = { width: [ 'full', 'auto', 'inherit' ] }; }