Sharing generated css code (Inspect tab) via API

Are there any plans to make the generated CSS code made available via API (the CSS output you see from the Inspect tab)?

Something like:

figmaApi.getCssCode((string) => {
   // console.log(string);
   // output:
 /*
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    padding: 0px;
*/
})
1 Like