summaryrefslogtreecommitdiffstats
path: root/toolkit/components/uniffi-fixture-external-types/src/external-types.udl
blob: d50fc680f789208a84116d85e198a18bdc8d83f3 (plain)
1
2
3
4
5
6
7
8
9
10
11
// A type defined in the `geometry` component
[External="uniffi_geometry"]
typedef extern Point;

[External="uniffi_geometry"]
typedef extern Line;

namespace external_types {
    double gradient(Line? value);
    Point? intersection(Line ln1, Line ln2);
};