abap2UI5/src/01/03/z2ui5_cl_app_style_css.clas.abap
oblomov-dev a09ad57472
Some checks are pending
build_downport / build_downport (push) Waiting to run
build_frontend_classic / build_frontend_classic (push) Waiting to run
build_frontend_cloud / build_frontend_cloud (push) Waiting to run
ui5lint / test (push) Waiting to run
update formatting of abap js classes (#1585)
2024-11-26 15:29:24 +01:00

27 lines
392 B
ABAP

CLASS z2ui5_cl_app_style_css DEFINITION
PUBLIC
FINAL
CREATE PUBLIC .
PUBLIC SECTION.
CLASS-METHODS get
RETURNING
VALUE(result) TYPE string.
PROTECTED SECTION.
PRIVATE SECTION.
ENDCLASS.
CLASS z2ui5_cl_app_style_css IMPLEMENTATION.
METHOD get.
result = `/* Enter your custom styles here */` &&
``.
ENDMETHOD.
ENDCLASS.