blob: 1d3ba0f943e69461a07f347c252ef90b24749e9c (
plain)
1
2
3
4
5
6
7
8
9
|
// SPDX-License-Identifier: MIT OR LGPL-2.0-or-later
// SPDX-FileCopyrightText: 2018 Philip Chimento <philip.chimento@gmail.com>
// This override adds the builtin Cairo bindings to imports.gi.cairo.
// (It's confusing to have two incompatible ways to import Cairo.)
function _init() {
Object.assign(this, imports.cairo);
}
|