ref(TS) Improve TS (#12656)

This commit is contained in:
Robert Pintilii
2023-02-02 13:12:31 +02:00
committed by GitHub
parent ab262ec8b1
commit fbc0a502e7
60 changed files with 232 additions and 205 deletions

View File

@@ -0,0 +1,15 @@
/**
* The application's default properties related to the CSS box model such as
* margins, borders, padding.
*/
export const BoxModel = {
/**
* The application's default margin when non-zero margin is necessary.
*/
margin: 10,
/**
* The application's default padding when non-zero padding is necessary.
*/
padding: 10
};