mirror of
https://github.com/Tria-plc/emaui.git
synced 2026-08-27 09:42:55 +00:00
17 lines
223 B
JavaScript
17 lines
223 B
JavaScript
export default class Transformer {
|
|
// Return true if anything was processed, false otherwise.
|
|
|
|
|
|
getPrefixCode() {
|
|
return "";
|
|
}
|
|
|
|
getHoistedCode() {
|
|
return "";
|
|
}
|
|
|
|
getSuffixCode() {
|
|
return "";
|
|
}
|
|
}
|