I'm trying to develop an Gnome Shell extension using GJS(Gnome Javascript), however, I came across the Lang library (I think it is a library, if not correct me). But I can't find any resources about it on the web.
In the code it looks something like this:
const Lang = imports.lang;
const ObjectA = new Lang.Class({ ... });
Where can I find some documentation about it? Is it a Gnome lib? A Mozilla lib?
Lang
is deprecated now that we have native es6 classes, etc. More info here. – Ambo