blob: def57f35b147e92dce1dd191e27c5a0667eea9f2 [file] [log] [blame]
// Copyright 2023 The Chromium Authors
// Use of this source code is governed by a BSD-style license that can be
// found in the LICENSE file.
/**
* An interface to be implemented by the generic Parent Access screens that
* render different content depending on flow type.
* @interface
*/
export class ParentAccessScreenInterface {
/** Renders the correct content for the screen depending on the flow type. */
async renderFlowSpecificContent() {}
}