chromium/mojo/public/js/test/module_b_2.test-mojom

// Copyright 2019 The Chromium Authors
// Use of this source code is governed by a BSD-style license that can be
// found in the LICENSE file.

module module_b;

import "mojo/public/js/test/module_a.test-mojom";
import "mojo/public/js/test/module_b_1.test-mojom";

struct TestStructB2 {
  module_a.TestStructA1 a1;
  module_a.TestStructA2 a2;
  TestStructB2 b2;
};

interface TestInterface {
  PassA1(module_a.TestStructA1 a1);
  PassB1(TestStructB1 b1);
  PassB2(TestStructB2 b2);
};