export Label.Props

This commit is contained in:
Aylur
2023-11-08 22:29:49 +01:00
parent 2879164576
commit a6db660822
+1 -1
View File
@@ -11,7 +11,7 @@ const truncates = ['none', 'start', 'middle', 'end'] as const;
type Justification = typeof justifications[number];
type Truncate = typeof truncates[number];
interface Props extends BaseProps<AgsLabel>, Gtk.Label.ConstructorProperties {
export interface Props extends BaseProps<AgsLabel>, Gtk.Label.ConstructorProperties {
justification?: Justification
truncate?: Truncate
}