Is it possible to retrieve compiled CSS (as a string) from an Angular2+ component?
@Component({
selector: 'test-graph',
templateUrl: './test-graph.component.html',
styleUrls: ['./test-graph.component.scss']
})
export class TestGraphComponent implements OnInit {
}
I am searching for a method or utility that can extract the CSS defined in "test-graph.component.scss".