@lightningtv/renderer
Version:
Lightning 3 Renderer
7 lines (6 loc) • 418 B
TypeScript
import type { CoreShaderType } from '../../renderers/CoreShaderNode.js';
import { type BorderProps } from './BorderTemplate.js';
import { type RoundedProps } from './RoundedTemplate.js';
import type { PrefixedType } from './shaderUtils.js';
export type RoundedWithBorderProps = RoundedProps & PrefixedType<BorderProps, 'border'>;
export declare const RoundedWithBorderTemplate: CoreShaderType<RoundedWithBorderProps>;